ETH Price: $3,034.44 (+5.01%)
Gas: 2 Gwei

Token

Kalb (KALB)
 

Overview

Max Total Supply

420,690,000,000,000 KALB

Holders

349

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,307,704,448,666.279076461248969032 KALB

Value
$0.00
0xd04339efde997e97dcf7356e242b4ba9c49cde53
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:
KalbToken

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-04
*/

// SPDX-License-Identifier: MIT

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 @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
 mapping(address => uint256) private _balances;

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

 uint256 private _totalSupply;

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

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

 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, amount);

 _totalSupply += 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), amount);

 uint256 accountBalance = _balances[account];
 require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
 unchecked {
 _balances[account] = accountBalance - amount;
 }
 _totalSupply -= 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,
 uint256 amount
 ) 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 {}
}


// File contracts/KalbToken.sol



pragma solidity ^0.8.0;


contract KalbToken is Ownable, ERC20 {
 bool public limited;
 uint256 public maxHoldingAmount;
 uint256 public minHoldingAmount;
 address public uniswapV2Pair;
 mapping(address => bool) public blacklists;

 constructor(uint256 _totalSupply) ERC20("Kalb", "KALB") {
 _mint(msg.sender, _totalSupply);
 }

 function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
 blacklists[_address] = _isBlacklisting;
 }

 function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
 limited = _limited;
 uniswapV2Pair = _uniswapV2Pair;
 maxHoldingAmount = _maxHoldingAmount;
 minHoldingAmount = _minHoldingAmount;
 }

 function _beforeTokenTransfer(
 address from,
 address to,
 uint256 amount
 ) override internal virtual {
 require(!blacklists[to] && !blacklists[from], "Blacklisted");

 if (uniswapV2Pair == address(0)) {
 require(from == owner() || to == owner(), "trading is not started");
 return;
 }

 if (limited && from == uniswapV2Pair) {
 require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
 }
 }

 function burn(uint256 value) external {
 _burn(msg.sender, value);
 }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002e8738038062002e878339818101604052810190620000379190620007b1565b6040518060400160405280600481526020017f4b616c62000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b414c4200000000000000000000000000000000000000000000000000000000815250620000c3620000b76200011060201b60201c565b6200011860201b60201c565b8160049080519060200190620000db929190620006ea565b508060059080519060200190620000f4929190620006ea565b505050620001093382620001dc60201b60201c565b5062000af9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024690620008ce565b60405180910390fd5b62000263600083836200035660201b60201c565b806003600082825462000277919062000940565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf919062000940565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000336919062000912565b60405180910390a362000352600083836200067360201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003fb5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200043d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043490620008f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200056157620004a56200067860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005195750620004ea6200067860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200055b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055290620008ac565b60405180910390fd5b6200066e565b600660009054906101000a900460ff168015620005cb5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200066d5760075481620005eb84620006a160201b620008d11760201c565b620005f7919062000940565b111580156200062a5750600854816200061b84620006a160201b620008d11760201c565b62000627919062000940565b10155b6200066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000663906200088a565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620006f890620009a7565b90600052602060002090601f0160209004810192826200071c576000855562000768565b82601f106200073757805160ff191683800117855562000768565b8280016001018555821562000768579182015b82811115620007675782518255916020019190600101906200074a565b5b5090506200077791906200077b565b5090565b5b80821115620007965760008160009055506001016200077c565b5090565b600081519050620007ab8162000adf565b92915050565b600060208284031215620007c457600080fd5b6000620007d4848285016200079a565b91505092915050565b6000620007ec6006836200092f565b9150620007f98262000a3b565b602082019050919050565b6000620008136016836200092f565b9150620008208262000a64565b602082019050919050565b60006200083a601f836200092f565b9150620008478262000a8d565b602082019050919050565b600062000861600b836200092f565b91506200086e8262000ab6565b602082019050919050565b62000884816200099d565b82525050565b60006020820190508181036000830152620008a581620007dd565b9050919050565b60006020820190508181036000830152620008c78162000804565b9050919050565b60006020820190508181036000830152620008e9816200082b565b9050919050565b600060208201905081810360008301526200090b8162000852565b9050919050565b600060208201905062000929600083018462000879565b92915050565b600082825260208201905092915050565b60006200094d826200099d565b91506200095a836200099d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009925762000991620009dd565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620009c057607f821691505b60208210811415620009d757620009d662000a0c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b62000aea816200099d565b811462000af657600080fd5b50565b61237e8062000b096000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461036757806395d89b4114610385578063a457c2d7146103a3578063a9059cbb146103d3578063dd62ed3e14610403578063f2fde38b1461043357610142565b806349bd5a5e146102d357806370a08231146102f1578063715018a614610321578063860a32ec1461032b57806389f9a1d31461034957610142565b806323b872dd1161010a57806323b872dd14610201578063313ce56714610231578063395093511461024f5780633aa633aa1461027f578063404e51291461029b57806342966c68146102b757610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461019557806318160ddd146101c55780631ab99e12146101e3575b600080fd5b61014f61044f565b60405161015c9190611b62565b60405180910390f35b61017f600480360381019061017a9190611805565b6104e1565b60405161018c9190611b47565b60405180910390f35b6101af60048036038101906101aa9190611715565b6104ff565b6040516101bc9190611b47565b60405180910390f35b6101cd61051f565b6040516101da9190611d44565b60405180910390f35b6101eb610529565b6040516101f89190611d44565b60405180910390f35b61021b6004803603810190610216919061177a565b61052f565b6040516102289190611b47565b60405180910390f35b610239610627565b6040516102469190611d5f565b60405180910390f35b61026960048036038101906102649190611805565b610630565b6040516102769190611b47565b60405180910390f35b61029960048036038101906102949190611841565b6106dc565b005b6102b560048036038101906102b091906117c9565b6107c7565b005b6102d160048036038101906102cc91906118a4565b61089e565b005b6102db6108ab565b6040516102e89190611b2c565b60405180910390f35b61030b60048036038101906103069190611715565b6108d1565b6040516103189190611d44565b60405180910390f35b61032961091a565b005b6103336109a2565b6040516103409190611b47565b60405180910390f35b6103516109b5565b60405161035e9190611d44565b60405180910390f35b61036f6109bb565b60405161037c9190611b2c565b60405180910390f35b61038d6109e4565b60405161039a9190611b62565b60405180910390f35b6103bd60048036038101906103b89190611805565b610a76565b6040516103ca9190611b47565b60405180910390f35b6103ed60048036038101906103e89190611805565b610b61565b6040516103fa9190611b47565b60405180910390f35b61041d6004803603810190610418919061173e565b610b7f565b60405161042a9190611d44565b60405180910390f35b61044d60048036038101906104489190611715565b610c06565b005b60606004805461045e90611ea8565b80601f016020809104026020016040519081016040528092919081815260200182805461048a90611ea8565b80156104d75780601f106104ac576101008083540402835291602001916104d7565b820191906000526020600020905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b60006104f56104ee610cfe565b8484610d06565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b600061053c848484610ed1565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610587610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fe90611c44565b60405180910390fd5b61061b85610613610cfe565b858403610d06565b60019150509392505050565b60006012905090565b60006106d261063d610cfe565b84846002600061064b610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106cd9190611d96565b610d06565b6001905092915050565b6106e4610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107026109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90611c64565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107cf610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107ed6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90611c64565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6108a83382611155565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610922610cfe565b73ffffffffffffffffffffffffffffffffffffffff166109406109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90611c64565b60405180910390fd5b6109a0600061132e565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109f390611ea8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90611ea8565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b5050505050905090565b60008060026000610a85610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611d04565b60405180910390fd5b610b56610b4d610cfe565b85858403610d06565b600191505092915050565b6000610b75610b6e610cfe565b8484610ed1565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c0e610cfe565b73ffffffffffffffffffffffffffffffffffffffff16610c2c6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990611c64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611bc4565b60405180910390fd5b610cfb8161132e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90611ce4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90611be4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ec49190611d44565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611cc4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890611b84565b60405180910390fd5b610fbc8383836113f2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611c04565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d89190611d96565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161113c9190611d44565b60405180910390a361114f8484846116d1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90611c84565b60405180910390fd5b6111d1826000836113f2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90611ba4565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112b09190611dec565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113159190611d44565b60405180910390a3611329836000846116d1565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156114965750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611d24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115e3576115346109bb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061159f57506115706109bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590611ca4565b60405180910390fd5b6116cc565b600660009054906101000a900460ff16801561164c5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156116cb576007548161165e846108d1565b6116689190611d96565b1115801561168b57506008548161167e846108d1565b6116889190611d96565b10155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190611c24565b60405180910390fd5b5b5b505050565b505050565b6000813590506116e581612303565b92915050565b6000813590506116fa8161231a565b92915050565b60008135905061170f81612331565b92915050565b60006020828403121561172757600080fd5b6000611735848285016116d6565b91505092915050565b6000806040838503121561175157600080fd5b600061175f858286016116d6565b9250506020611770858286016116d6565b9150509250929050565b60008060006060848603121561178f57600080fd5b600061179d868287016116d6565b93505060206117ae868287016116d6565b92505060406117bf86828701611700565b9150509250925092565b600080604083850312156117dc57600080fd5b60006117ea858286016116d6565b92505060206117fb858286016116eb565b9150509250929050565b6000806040838503121561181857600080fd5b6000611826858286016116d6565b925050602061183785828601611700565b9150509250929050565b6000806000806080858703121561185757600080fd5b6000611865878288016116eb565b9450506020611876878288016116d6565b935050604061188787828801611700565b925050606061189887828801611700565b91505092959194509250565b6000602082840312156118b657600080fd5b60006118c484828501611700565b91505092915050565b6118d681611e20565b82525050565b6118e581611e32565b82525050565b60006118f682611d7a565b6119008185611d85565b9350611910818560208601611e75565b61191981611f38565b840191505092915050565b6000611931602383611d85565b915061193c82611f49565b604082019050919050565b6000611954602283611d85565b915061195f82611f98565b604082019050919050565b6000611977602683611d85565b915061198282611fe7565b604082019050919050565b600061199a602283611d85565b91506119a582612036565b604082019050919050565b60006119bd602683611d85565b91506119c882612085565b604082019050919050565b60006119e0600683611d85565b91506119eb826120d4565b602082019050919050565b6000611a03602883611d85565b9150611a0e826120fd565b604082019050919050565b6000611a26602083611d85565b9150611a318261214c565b602082019050919050565b6000611a49602183611d85565b9150611a5482612175565b604082019050919050565b6000611a6c601683611d85565b9150611a77826121c4565b602082019050919050565b6000611a8f602583611d85565b9150611a9a826121ed565b604082019050919050565b6000611ab2602483611d85565b9150611abd8261223c565b604082019050919050565b6000611ad5602583611d85565b9150611ae08261228b565b604082019050919050565b6000611af8600b83611d85565b9150611b03826122da565b602082019050919050565b611b1781611e5e565b82525050565b611b2681611e68565b82525050565b6000602082019050611b4160008301846118cd565b92915050565b6000602082019050611b5c60008301846118dc565b92915050565b60006020820190508181036000830152611b7c81846118eb565b905092915050565b60006020820190508181036000830152611b9d81611924565b9050919050565b60006020820190508181036000830152611bbd81611947565b9050919050565b60006020820190508181036000830152611bdd8161196a565b9050919050565b60006020820190508181036000830152611bfd8161198d565b9050919050565b60006020820190508181036000830152611c1d816119b0565b9050919050565b60006020820190508181036000830152611c3d816119d3565b9050919050565b60006020820190508181036000830152611c5d816119f6565b9050919050565b60006020820190508181036000830152611c7d81611a19565b9050919050565b60006020820190508181036000830152611c9d81611a3c565b9050919050565b60006020820190508181036000830152611cbd81611a5f565b9050919050565b60006020820190508181036000830152611cdd81611a82565b9050919050565b60006020820190508181036000830152611cfd81611aa5565b9050919050565b60006020820190508181036000830152611d1d81611ac8565b9050919050565b60006020820190508181036000830152611d3d81611aeb565b9050919050565b6000602082019050611d596000830184611b0e565b92915050565b6000602082019050611d746000830184611b1d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611da182611e5e565b9150611dac83611e5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611de157611de0611eda565b5b828201905092915050565b6000611df782611e5e565b9150611e0283611e5e565b925082821015611e1557611e14611eda565b5b828203905092915050565b6000611e2b82611e3e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e93578082015181840152602081019050611e78565b83811115611ea2576000848401525b50505050565b60006002820490506001821680611ec057607f821691505b60208210811415611ed457611ed3611f09565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b61230c81611e20565b811461231757600080fd5b50565b61232381611e32565b811461232e57600080fd5b50565b61233a81611e5e565b811461234557600080fd5b5056fea2646970667358221220c4c876dfe8eb7736ff3c0c49a6fba67f59ff7e9456ba9b6c013cbba443eca8dd64736f6c6343000803003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461036757806395d89b4114610385578063a457c2d7146103a3578063a9059cbb146103d3578063dd62ed3e14610403578063f2fde38b1461043357610142565b806349bd5a5e146102d357806370a08231146102f1578063715018a614610321578063860a32ec1461032b57806389f9a1d31461034957610142565b806323b872dd1161010a57806323b872dd14610201578063313ce56714610231578063395093511461024f5780633aa633aa1461027f578063404e51291461029b57806342966c68146102b757610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461019557806318160ddd146101c55780631ab99e12146101e3575b600080fd5b61014f61044f565b60405161015c9190611b62565b60405180910390f35b61017f600480360381019061017a9190611805565b6104e1565b60405161018c9190611b47565b60405180910390f35b6101af60048036038101906101aa9190611715565b6104ff565b6040516101bc9190611b47565b60405180910390f35b6101cd61051f565b6040516101da9190611d44565b60405180910390f35b6101eb610529565b6040516101f89190611d44565b60405180910390f35b61021b6004803603810190610216919061177a565b61052f565b6040516102289190611b47565b60405180910390f35b610239610627565b6040516102469190611d5f565b60405180910390f35b61026960048036038101906102649190611805565b610630565b6040516102769190611b47565b60405180910390f35b61029960048036038101906102949190611841565b6106dc565b005b6102b560048036038101906102b091906117c9565b6107c7565b005b6102d160048036038101906102cc91906118a4565b61089e565b005b6102db6108ab565b6040516102e89190611b2c565b60405180910390f35b61030b60048036038101906103069190611715565b6108d1565b6040516103189190611d44565b60405180910390f35b61032961091a565b005b6103336109a2565b6040516103409190611b47565b60405180910390f35b6103516109b5565b60405161035e9190611d44565b60405180910390f35b61036f6109bb565b60405161037c9190611b2c565b60405180910390f35b61038d6109e4565b60405161039a9190611b62565b60405180910390f35b6103bd60048036038101906103b89190611805565b610a76565b6040516103ca9190611b47565b60405180910390f35b6103ed60048036038101906103e89190611805565b610b61565b6040516103fa9190611b47565b60405180910390f35b61041d6004803603810190610418919061173e565b610b7f565b60405161042a9190611d44565b60405180910390f35b61044d60048036038101906104489190611715565b610c06565b005b60606004805461045e90611ea8565b80601f016020809104026020016040519081016040528092919081815260200182805461048a90611ea8565b80156104d75780601f106104ac576101008083540402835291602001916104d7565b820191906000526020600020905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b60006104f56104ee610cfe565b8484610d06565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b600061053c848484610ed1565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610587610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fe90611c44565b60405180910390fd5b61061b85610613610cfe565b858403610d06565b60019150509392505050565b60006012905090565b60006106d261063d610cfe565b84846002600061064b610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106cd9190611d96565b610d06565b6001905092915050565b6106e4610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107026109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90611c64565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107cf610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107ed6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90611c64565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6108a83382611155565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610922610cfe565b73ffffffffffffffffffffffffffffffffffffffff166109406109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90611c64565b60405180910390fd5b6109a0600061132e565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109f390611ea8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90611ea8565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b5050505050905090565b60008060026000610a85610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611d04565b60405180910390fd5b610b56610b4d610cfe565b85858403610d06565b600191505092915050565b6000610b75610b6e610cfe565b8484610ed1565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c0e610cfe565b73ffffffffffffffffffffffffffffffffffffffff16610c2c6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990611c64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611bc4565b60405180910390fd5b610cfb8161132e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90611ce4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90611be4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ec49190611d44565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611cc4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890611b84565b60405180910390fd5b610fbc8383836113f2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611c04565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d89190611d96565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161113c9190611d44565b60405180910390a361114f8484846116d1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90611c84565b60405180910390fd5b6111d1826000836113f2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90611ba4565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112b09190611dec565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113159190611d44565b60405180910390a3611329836000846116d1565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156114965750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611d24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115e3576115346109bb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061159f57506115706109bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590611ca4565b60405180910390fd5b6116cc565b600660009054906101000a900460ff16801561164c5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156116cb576007548161165e846108d1565b6116689190611d96565b1115801561168b57506008548161167e846108d1565b6116889190611d96565b10155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190611c24565b60405180910390fd5b5b5b505050565b505050565b6000813590506116e581612303565b92915050565b6000813590506116fa8161231a565b92915050565b60008135905061170f81612331565b92915050565b60006020828403121561172757600080fd5b6000611735848285016116d6565b91505092915050565b6000806040838503121561175157600080fd5b600061175f858286016116d6565b9250506020611770858286016116d6565b9150509250929050565b60008060006060848603121561178f57600080fd5b600061179d868287016116d6565b93505060206117ae868287016116d6565b92505060406117bf86828701611700565b9150509250925092565b600080604083850312156117dc57600080fd5b60006117ea858286016116d6565b92505060206117fb858286016116eb565b9150509250929050565b6000806040838503121561181857600080fd5b6000611826858286016116d6565b925050602061183785828601611700565b9150509250929050565b6000806000806080858703121561185757600080fd5b6000611865878288016116eb565b9450506020611876878288016116d6565b935050604061188787828801611700565b925050606061189887828801611700565b91505092959194509250565b6000602082840312156118b657600080fd5b60006118c484828501611700565b91505092915050565b6118d681611e20565b82525050565b6118e581611e32565b82525050565b60006118f682611d7a565b6119008185611d85565b9350611910818560208601611e75565b61191981611f38565b840191505092915050565b6000611931602383611d85565b915061193c82611f49565b604082019050919050565b6000611954602283611d85565b915061195f82611f98565b604082019050919050565b6000611977602683611d85565b915061198282611fe7565b604082019050919050565b600061199a602283611d85565b91506119a582612036565b604082019050919050565b60006119bd602683611d85565b91506119c882612085565b604082019050919050565b60006119e0600683611d85565b91506119eb826120d4565b602082019050919050565b6000611a03602883611d85565b9150611a0e826120fd565b604082019050919050565b6000611a26602083611d85565b9150611a318261214c565b602082019050919050565b6000611a49602183611d85565b9150611a5482612175565b604082019050919050565b6000611a6c601683611d85565b9150611a77826121c4565b602082019050919050565b6000611a8f602583611d85565b9150611a9a826121ed565b604082019050919050565b6000611ab2602483611d85565b9150611abd8261223c565b604082019050919050565b6000611ad5602583611d85565b9150611ae08261228b565b604082019050919050565b6000611af8600b83611d85565b9150611b03826122da565b602082019050919050565b611b1781611e5e565b82525050565b611b2681611e68565b82525050565b6000602082019050611b4160008301846118cd565b92915050565b6000602082019050611b5c60008301846118dc565b92915050565b60006020820190508181036000830152611b7c81846118eb565b905092915050565b60006020820190508181036000830152611b9d81611924565b9050919050565b60006020820190508181036000830152611bbd81611947565b9050919050565b60006020820190508181036000830152611bdd8161196a565b9050919050565b60006020820190508181036000830152611bfd8161198d565b9050919050565b60006020820190508181036000830152611c1d816119b0565b9050919050565b60006020820190508181036000830152611c3d816119d3565b9050919050565b60006020820190508181036000830152611c5d816119f6565b9050919050565b60006020820190508181036000830152611c7d81611a19565b9050919050565b60006020820190508181036000830152611c9d81611a3c565b9050919050565b60006020820190508181036000830152611cbd81611a5f565b9050919050565b60006020820190508181036000830152611cdd81611a82565b9050919050565b60006020820190508181036000830152611cfd81611aa5565b9050919050565b60006020820190508181036000830152611d1d81611ac8565b9050919050565b60006020820190508181036000830152611d3d81611aeb565b9050919050565b6000602082019050611d596000830184611b0e565b92915050565b6000602082019050611d746000830184611b1d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611da182611e5e565b9150611dac83611e5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611de157611de0611eda565b5b828201905092915050565b6000611df782611e5e565b9150611e0283611e5e565b925082821015611e1557611e14611eda565b5b828203905092915050565b6000611e2b82611e3e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e93578082015181840152602081019050611e78565b83811115611ea2576000848401525b50505050565b60006002820490506001821680611ec057607f821691505b60208210811415611ed457611ed3611f09565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b61230c81611e20565b811461231757600080fd5b50565b61232381611e32565b811461232e57600080fd5b50565b61233a81611e5e565b811461234557600080fd5b5056fea2646970667358221220c4c876dfe8eb7736ff3c0c49a6fba67f59ff7e9456ba9b6c013cbba443eca8dd64736f6c63430008030033

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

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


Deployed Bytecode Sourcemap

17334:1271:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8528:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10440:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17500:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9532:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17433:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11020:412;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9398:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11791:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17779:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17649:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18531:71;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17468:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9679:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2394:93;;;:::i;:::-;;17375:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17398:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1814:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8719:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12434:364;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9975:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10182:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2624:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8528:90;8582:13;8608:5;8601:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8528:90;:::o;10440:152::-;10523:4;10533:39;10542:12;:10;:12::i;:::-;10556:7;10565:6;10533:8;:39::i;:::-;10583:4;10576:11;;10440:152;;;;:::o;17500:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;9532:98::-;9593:7;9613:12;;9606:19;;9532:98;:::o;17433:31::-;;;;:::o;11020:412::-;11136:4;11146:36;11156:6;11164:9;11175:6;11146:9;:36::i;:::-;11188:24;11215:11;:19;11227:6;11215:19;;;;;;;;;;;;;;;:33;11235:12;:10;:12::i;:::-;11215:33;;;;;;;;;;;;;;;;11188:60;;11280:6;11260:16;:26;;11252:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11349:57;11358:6;11366:12;:10;:12::i;:::-;11399:6;11380:16;:25;11349:8;:57::i;:::-;11423:4;11416:11;;;11020:412;;;;;:::o;9398:83::-;9456:5;9474:2;9467:9;;9398:83;:::o;11791:198::-;11879:4;11889:80;11898:12;:10;:12::i;:::-;11912:7;11958:10;11921:11;:25;11933:12;:10;:12::i;:::-;11921:25;;;;;;;;;;;;;;;:34;11947:7;11921:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11889:8;:80::i;:::-;11980:4;11973:11;;11791:198;;;;:::o;17779:270::-;2014:12;:10;:12::i;:::-;2003:23;;:7;:5;:7::i;:::-;:23;;;1995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17922:8:::1;17912:7;;:18;;;;;;;;;;;;;;;;;;17950:14;17934:13;;:30;;;;;;;;;;;;;;;;;;17987:17;17968:16;:36;;;;18027:17;18008:16;:36;;;;17779:270:::0;;;;:::o;17649:125::-;2014:12;:10;:12::i;:::-;2003:23;;:7;:5;:7::i;:::-;:23;;;1995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17754:15:::1;17731:10;:20;17742:8;17731:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;17649:125:::0;;:::o;18531:71::-;18573:24;18579:10;18591:5;18573;:24::i;:::-;18531:71;:::o;17468:28::-;;;;;;;;;;;;;:::o;9679:117::-;9753:7;9773:9;:18;9783:7;9773:18;;;;;;;;;;;;;;;;9766:25;;9679:117;;;:::o;2394:93::-;2014:12;:10;:12::i;:::-;2003:23;;:7;:5;:7::i;:::-;:23;;;1995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2452:30:::1;2479:1;2452:18;:30::i;:::-;2394:93::o:0;17375:19::-;;;;;;;;;;;;;:::o;17398:31::-;;;;:::o;1814:77::-;1860:7;1880:6;;;;;;;;;;;1873:13;;1814:77;:::o;8719:94::-;8775:13;8801:7;8794:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8719:94;:::o;12434:364::-;12527:4;12537:24;12564:11;:25;12576:12;:10;:12::i;:::-;12564:25;;;;;;;;;;;;;;;:34;12590:7;12564:34;;;;;;;;;;;;;;;;12537:61;;12630:15;12610:16;:35;;12602:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12705:67;12714:12;:10;:12::i;:::-;12728:7;12756:15;12737:16;:34;12705:8;:67::i;:::-;12789:4;12782:11;;;12434:364;;;;:::o;9975:158::-;10061:4;10071:42;10081:12;:10;:12::i;:::-;10095:9;10106:6;10071:9;:42::i;:::-;10124:4;10117:11;;9975:158;;;;:::o;10182:141::-;10271:7;10291:11;:18;10303:5;10291:18;;;;;;;;;;;;;;;:27;10310:7;10291:27;;;;;;;;;;;;;;;;10284:34;;10182:141;;;;:::o;2624:184::-;2014:12;:10;:12::i;:::-;2003:23;;:7;:5;:7::i;:::-;:23;;;1995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2726:1:::1;2706:22;;:8;:22;;;;2698:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2775:28;2794:8;2775:18;:28::i;:::-;2624:184:::0;:::o;599:88::-;652:7;672:10;665:17;;599:88;:::o;15643:325::-;15765:1;15748:19;;:5;:19;;;;15740:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15839:1;15820:21;;:7;:21;;;;15812:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15916:6;15886:11;:18;15898:5;15886:18;;;;;;;;;;;;;;;:27;15905:7;15886:27;;;;;;;;;;;;;;;:36;;;;15947:7;15931:32;;15940:5;15931:32;;;15956:6;15931:32;;;;;;:::i;:::-;;;;;;;;15643:325;;;:::o;13230:625::-;13357:1;13339:20;;:6;:20;;;;13331:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13434:1;13413:23;;:9;:23;;;;13405:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13482:47;13503:6;13511:9;13522:6;13482:20;:47::i;:::-;13535:21;13559:9;:17;13569:6;13559:17;;;;;;;;;;;;;;;;13535:41;;13605:6;13588:13;:23;;13580:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13708:6;13692:13;:22;13672:9;:17;13682:6;13672:17;;;;;;;;;;;;;;;:42;;;;13746:6;13722:9;:20;13732:9;13722:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13780:9;13763:35;;13772:6;13763:35;;;13791:6;13763:35;;;;;;:::i;:::-;;;;;;;;13804:46;13824:6;13832:9;13843:6;13804:19;:46::i;:::-;13230:625;;;;:::o;14745:514::-;14841:1;14822:21;;:7;:21;;;;14814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14887:49;14908:7;14925:1;14929:6;14887:20;:49::i;:::-;14942:22;14967:9;:18;14977:7;14967:18;;;;;;;;;;;;;;;;14942:43;;15015:6;14997:14;:24;;14989:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15116:6;15099:14;:23;15078:9;:18;15088:7;15078:18;;;;;;;;;;;;;;;:44;;;;15146:6;15130:12;;:22;;;;;;;:::i;:::-;;;;;;;;15189:1;15163:37;;15172:7;15163:37;;;15193:6;15163:37;;;;;;:::i;:::-;;;;;;;;15206:48;15226:7;15243:1;15247:6;15206:19;:48::i;:::-;14745:514;;;:::o;2950:167::-;3017:16;3036:6;;;;;;;;;;;3017:25;;3055:8;3046:6;;:17;;;;;;;;;;;;;;;;;;3103:8;3072:40;;3093:8;3072:40;;;;;;;;;;;;2950:167;;:::o;18054:472::-;18175:10;:14;18186:2;18175:14;;;;;;;;;;;;;;;;;;;;;;;;;18174:15;:36;;;;;18194:10;:16;18205:4;18194:16;;;;;;;;;;;;;;;;;;;;;;;;;18193:17;18174:36;18166:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;18261:1;18236:27;;:13;;;;;;;;;;;:27;;;18232:119;;;18285:7;:5;:7::i;:::-;18277:15;;:4;:15;;;:32;;;;18302:7;:5;:7::i;:::-;18296:13;;:2;:13;;;18277:32;18269:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18340:7;;18232:119;18360:7;;;;;;;;;;;:32;;;;;18379:13;;;;;;;;;;;18371:21;;:4;:21;;;18360:32;18356:166;;;18438:16;;18428:6;18406:19;18422:2;18406:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;18490:16;;18480:6;18458:19;18474:2;18458:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;18406:100;18398:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;18356:166;18054:472;;;;:::o;17157:100::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;;;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;;;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:692::-;;;;;2651:3;2639:9;2630:7;2626:23;2622:33;2619:2;;;2668:1;2665;2658:12;2619:2;2711:1;2736:50;2778:7;2769:6;2758:9;2754:22;2736:50;:::i;:::-;2726:60;;2682:114;2835:2;2861:53;2906:7;2897:6;2886:9;2882:22;2861:53;:::i;:::-;2851:63;;2806:118;2963:2;2989:53;3034:7;3025:6;3014:9;3010:22;2989:53;:::i;:::-;2979:63;;2934:118;3091:2;3117:53;3162:7;3153:6;3142:9;3138:22;3117:53;:::i;:::-;3107:63;;3062:118;2609:578;;;;;;;:::o;3193:262::-;;3301:2;3289:9;3280:7;3276:23;3272:32;3269:2;;;3317:1;3314;3307:12;3269:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3259:196;;;;:::o;3461:118::-;3548:24;3566:5;3548:24;:::i;:::-;3543:3;3536:37;3526:53;;:::o;3585:109::-;3666:21;3681:5;3666:21;:::i;:::-;3661:3;3654:34;3644:50;;:::o;3700:364::-;;3816:39;3849:5;3816:39;:::i;:::-;3871:71;3935:6;3930:3;3871:71;:::i;:::-;3864:78;;3951:52;3996:6;3991:3;3984:4;3977:5;3973:16;3951:52;:::i;:::-;4028:29;4050:6;4028:29;:::i;:::-;4023:3;4019:39;4012:46;;3792:272;;;;;:::o;4070:366::-;;4233:67;4297:2;4292:3;4233:67;:::i;:::-;4226:74;;4309:93;4398:3;4309:93;:::i;:::-;4427:2;4422:3;4418:12;4411:19;;4216:220;;;:::o;4442:366::-;;4605:67;4669:2;4664:3;4605:67;:::i;:::-;4598:74;;4681:93;4770:3;4681:93;:::i;:::-;4799:2;4794:3;4790:12;4783:19;;4588:220;;;:::o;4814:366::-;;4977:67;5041:2;5036:3;4977:67;:::i;:::-;4970:74;;5053:93;5142:3;5053:93;:::i;:::-;5171:2;5166:3;5162:12;5155:19;;4960:220;;;:::o;5186:366::-;;5349:67;5413:2;5408:3;5349:67;:::i;:::-;5342:74;;5425:93;5514:3;5425:93;:::i;:::-;5543:2;5538:3;5534:12;5527:19;;5332:220;;;:::o;5558:366::-;;5721:67;5785:2;5780:3;5721:67;:::i;:::-;5714:74;;5797:93;5886:3;5797:93;:::i;:::-;5915:2;5910:3;5906:12;5899:19;;5704:220;;;:::o;5930:365::-;;6093:66;6157:1;6152:3;6093:66;:::i;:::-;6086:73;;6168:93;6257:3;6168:93;:::i;:::-;6286:2;6281:3;6277:12;6270:19;;6076:219;;;:::o;6301:366::-;;6464:67;6528:2;6523:3;6464:67;:::i;:::-;6457:74;;6540:93;6629:3;6540:93;:::i;:::-;6658:2;6653:3;6649:12;6642:19;;6447:220;;;:::o;6673:366::-;;6836:67;6900:2;6895:3;6836:67;:::i;:::-;6829:74;;6912:93;7001:3;6912:93;:::i;:::-;7030:2;7025:3;7021:12;7014:19;;6819:220;;;:::o;7045:366::-;;7208:67;7272:2;7267:3;7208:67;:::i;:::-;7201:74;;7284:93;7373:3;7284:93;:::i;:::-;7402:2;7397:3;7393:12;7386:19;;7191:220;;;:::o;7417:366::-;;7580:67;7644:2;7639:3;7580:67;:::i;:::-;7573:74;;7656:93;7745:3;7656:93;:::i;:::-;7774:2;7769:3;7765:12;7758:19;;7563:220;;;:::o;7789:366::-;;7952:67;8016:2;8011:3;7952:67;:::i;:::-;7945:74;;8028:93;8117:3;8028:93;:::i;:::-;8146:2;8141:3;8137:12;8130:19;;7935:220;;;:::o;8161:366::-;;8324:67;8388:2;8383:3;8324:67;:::i;:::-;8317:74;;8400:93;8489:3;8400:93;:::i;:::-;8518:2;8513:3;8509:12;8502:19;;8307:220;;;:::o;8533:366::-;;8696:67;8760:2;8755:3;8696:67;:::i;:::-;8689:74;;8772:93;8861:3;8772:93;:::i;:::-;8890:2;8885:3;8881:12;8874:19;;8679:220;;;:::o;8905:366::-;;9068:67;9132:2;9127:3;9068:67;:::i;:::-;9061:74;;9144:93;9233:3;9144:93;:::i;:::-;9262:2;9257:3;9253:12;9246:19;;9051:220;;;:::o;9277:118::-;9364:24;9382:5;9364:24;:::i;:::-;9359:3;9352:37;9342:53;;:::o;9401:112::-;9484:22;9500:5;9484:22;:::i;:::-;9479:3;9472:35;9462:51;;:::o;9519:222::-;;9650:2;9639:9;9635:18;9627:26;;9663:71;9731:1;9720:9;9716:17;9707:6;9663:71;:::i;:::-;9617:124;;;;:::o;9747:210::-;;9872:2;9861:9;9857:18;9849:26;;9885:65;9947:1;9936:9;9932:17;9923:6;9885:65;:::i;:::-;9839:118;;;;:::o;9963:313::-;;10114:2;10103:9;10099:18;10091:26;;10163:9;10157:4;10153:20;10149:1;10138:9;10134:17;10127:47;10191:78;10264:4;10255:6;10191:78;:::i;:::-;10183:86;;10081:195;;;;:::o;10282:419::-;;10486:2;10475:9;10471:18;10463:26;;10535:9;10529:4;10525:20;10521:1;10510:9;10506:17;10499:47;10563:131;10689:4;10563:131;:::i;:::-;10555:139;;10453:248;;;:::o;10707:419::-;;10911:2;10900:9;10896:18;10888:26;;10960:9;10954:4;10950:20;10946:1;10935:9;10931:17;10924:47;10988:131;11114:4;10988:131;:::i;:::-;10980:139;;10878:248;;;:::o;11132:419::-;;11336:2;11325:9;11321:18;11313:26;;11385:9;11379:4;11375:20;11371:1;11360:9;11356:17;11349:47;11413:131;11539:4;11413:131;:::i;:::-;11405:139;;11303:248;;;:::o;11557:419::-;;11761:2;11750:9;11746:18;11738:26;;11810:9;11804:4;11800:20;11796:1;11785:9;11781:17;11774:47;11838:131;11964:4;11838:131;:::i;:::-;11830:139;;11728:248;;;:::o;11982:419::-;;12186:2;12175:9;12171:18;12163:26;;12235:9;12229:4;12225:20;12221:1;12210:9;12206:17;12199:47;12263:131;12389:4;12263:131;:::i;:::-;12255:139;;12153:248;;;:::o;12407:419::-;;12611:2;12600:9;12596:18;12588:26;;12660:9;12654:4;12650:20;12646:1;12635:9;12631:17;12624:47;12688:131;12814:4;12688:131;:::i;:::-;12680:139;;12578:248;;;:::o;12832:419::-;;13036:2;13025:9;13021:18;13013:26;;13085:9;13079:4;13075:20;13071:1;13060:9;13056:17;13049:47;13113:131;13239:4;13113:131;:::i;:::-;13105:139;;13003:248;;;:::o;13257:419::-;;13461:2;13450:9;13446:18;13438:26;;13510:9;13504:4;13500:20;13496:1;13485:9;13481:17;13474:47;13538:131;13664:4;13538:131;:::i;:::-;13530:139;;13428:248;;;:::o;13682:419::-;;13886:2;13875:9;13871:18;13863:26;;13935:9;13929:4;13925:20;13921:1;13910:9;13906:17;13899:47;13963:131;14089:4;13963:131;:::i;:::-;13955:139;;13853:248;;;:::o;14107:419::-;;14311:2;14300:9;14296:18;14288:26;;14360:9;14354:4;14350:20;14346:1;14335:9;14331:17;14324:47;14388:131;14514:4;14388:131;:::i;:::-;14380:139;;14278:248;;;:::o;14532:419::-;;14736:2;14725:9;14721:18;14713:26;;14785:9;14779:4;14775:20;14771:1;14760:9;14756:17;14749:47;14813:131;14939:4;14813:131;:::i;:::-;14805:139;;14703:248;;;:::o;14957:419::-;;15161:2;15150:9;15146:18;15138:26;;15210:9;15204:4;15200:20;15196:1;15185:9;15181:17;15174:47;15238:131;15364:4;15238:131;:::i;:::-;15230:139;;15128:248;;;:::o;15382:419::-;;15586:2;15575:9;15571:18;15563:26;;15635:9;15629:4;15625:20;15621:1;15610:9;15606:17;15599:47;15663:131;15789:4;15663:131;:::i;:::-;15655:139;;15553:248;;;:::o;15807:419::-;;16011:2;16000:9;15996:18;15988:26;;16060:9;16054:4;16050:20;16046:1;16035:9;16031:17;16024:47;16088:131;16214:4;16088:131;:::i;:::-;16080:139;;15978:248;;;:::o;16232:222::-;;16363:2;16352:9;16348:18;16340:26;;16376:71;16444:1;16433:9;16429:17;16420:6;16376:71;:::i;:::-;16330:124;;;;:::o;16460:214::-;;16587:2;16576:9;16572:18;16564:26;;16600:67;16664:1;16653:9;16649:17;16640:6;16600:67;:::i;:::-;16554:120;;;;:::o;16680:99::-;;16766:5;16760:12;16750:22;;16739:40;;;:::o;16785:169::-;;16903:6;16898:3;16891:19;16943:4;16938:3;16934:14;16919:29;;16881:73;;;;:::o;16960:305::-;;17019:20;17037:1;17019:20;:::i;:::-;17014:25;;17053:20;17071:1;17053:20;:::i;:::-;17048:25;;17207:1;17139:66;17135:74;17132:1;17129:81;17126:2;;;17213:18;;:::i;:::-;17126:2;17257:1;17254;17250:9;17243:16;;17004:261;;;;:::o;17271:191::-;;17331:20;17349:1;17331:20;:::i;:::-;17326:25;;17365:20;17383:1;17365:20;:::i;:::-;17360:25;;17404:1;17401;17398:8;17395:2;;;17409:18;;:::i;:::-;17395:2;17454:1;17451;17447:9;17439:17;;17316:146;;;;:::o;17468:96::-;;17534:24;17552:5;17534:24;:::i;:::-;17523:35;;17513:51;;;:::o;17570:90::-;;17647:5;17640:13;17633:21;17622:32;;17612:48;;;:::o;17666:126::-;;17743:42;17736:5;17732:54;17721:65;;17711:81;;;:::o;17798:77::-;;17864:5;17853:16;;17843:32;;;:::o;17881:86::-;;17956:4;17949:5;17945:16;17934:27;;17924:43;;;:::o;17973:307::-;18041:1;18051:113;18065:6;18062:1;18059:13;18051:113;;;18150:1;18145:3;18141:11;18135:18;18131:1;18126:3;18122:11;18115:39;18087:2;18084:1;18080:10;18075:15;;18051:113;;;18182:6;18179:1;18176:13;18173:2;;;18262:1;18253:6;18248:3;18244:16;18237:27;18173:2;18022:258;;;;:::o;18286:320::-;;18367:1;18361:4;18357:12;18347:22;;18414:1;18408:4;18404:12;18435:18;18425:2;;18491:4;18483:6;18479:17;18469:27;;18425:2;18553;18545:6;18542:14;18522:18;18519:38;18516:2;;;18572:18;;:::i;:::-;18516:2;18337:269;;;;:::o;18612:180::-;18660:77;18657:1;18650:88;18757:4;18754:1;18747:15;18781:4;18778:1;18771:15;18798:180;18846:77;18843:1;18836:88;18943:4;18940:1;18933:15;18967:4;18964:1;18957:15;18984:102;;19076:2;19072:7;19067:2;19060:5;19056:14;19052:28;19042:38;;19032:54;;;:::o;19092:222::-;19232:34;19228:1;19220:6;19216:14;19209:58;19301:5;19296:2;19288:6;19284:15;19277:30;19198:116;:::o;19320:221::-;19460:34;19456:1;19448:6;19444:14;19437:58;19529:4;19524:2;19516:6;19512:15;19505:29;19426:115;:::o;19547:225::-;19687:34;19683:1;19675:6;19671:14;19664:58;19756:8;19751:2;19743:6;19739:15;19732:33;19653:119;:::o;19778:221::-;19918:34;19914:1;19906:6;19902:14;19895:58;19987:4;19982:2;19974:6;19970:15;19963:29;19884:115;:::o;20005:225::-;20145:34;20141:1;20133:6;20129:14;20122:58;20214:8;20209:2;20201:6;20197:15;20190:33;20111:119;:::o;20236:156::-;20376:8;20372:1;20364:6;20360:14;20353:32;20342:50;:::o;20398:227::-;20538:34;20534:1;20526:6;20522:14;20515:58;20607:10;20602:2;20594:6;20590:15;20583:35;20504:121;:::o;20631:182::-;20771:34;20767:1;20759:6;20755:14;20748:58;20737:76;:::o;20819:220::-;20959:34;20955:1;20947:6;20943:14;20936:58;21028:3;21023:2;21015:6;21011:15;21004:28;20925:114;:::o;21045:172::-;21185:24;21181:1;21173:6;21169:14;21162:48;21151:66;:::o;21223:224::-;21363:34;21359:1;21351:6;21347:14;21340:58;21432:7;21427:2;21419:6;21415:15;21408:32;21329:118;:::o;21453:223::-;21593:34;21589:1;21581:6;21577:14;21570:58;21662:6;21657:2;21649:6;21645:15;21638:31;21559:117;:::o;21682:224::-;21822:34;21818:1;21810:6;21806:14;21799:58;21891:7;21886:2;21878:6;21874:15;21867:32;21788:118;:::o;21912:161::-;22052:13;22048:1;22040:6;22036:14;22029:37;22018:55;:::o;22079:122::-;22152:24;22170:5;22152:24;:::i;:::-;22145:5;22142:35;22132:2;;22191:1;22188;22181:12;22132:2;22122:79;:::o;22207:116::-;22277:21;22292:5;22277:21;:::i;:::-;22270:5;22267:32;22257:2;;22313:1;22310;22303:12;22257:2;22247:76;:::o;22329:122::-;22402:24;22420:5;22402:24;:::i;:::-;22395:5;22392:35;22382:2;;22441:1;22438;22431:12;22382:2;22372:79;:::o

Swarm Source

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